home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / hanna-in-a-choppa.swf / scripts / DefineButton2_217 / BUTTONCONDACTION on(release).as next >
Encoding:
Text File  |  2011-12-21  |  314 b   |  16 lines

  1. on(release){
  2.    _root.objSounds.play("rollover-tick");
  3.    if(_root.controls == undefined)
  4.    {
  5.       _root.objTrans.goto("controls");
  6.    }
  7.    else
  8.    {
  9.       _root.objTrans.goto("picklevel");
  10.    }
  11.    if(!_root.objSounds.sounds.music.playing)
  12.    {
  13.       _root.objSounds.play("music",60,true);
  14.    }
  15. }
  16.